home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / xmasspak / tales / print_s.inc < prev    next >
Encoding:
Text File  |  1995-12-30  |  510 b   |  30 lines

  1. ;
  2. ; PRINT_SCROLL = shows the scrollies on the screen
  3. ;
  4. ;
  5. ;
  6. print_scroll: mov cx,80
  7.  
  8. psc2:         push cx
  9.               push di
  10.  
  11.               mov cx,16/2
  12. psc1:         mov ax,[ds:si]
  13.               mov [es:di],al
  14.               mov [es:di+80],ah
  15.               add di,160
  16.               add si,2
  17.               dec cx
  18.               jnz psc1
  19.  
  20.               pop di
  21.               pop cx
  22.  
  23.               inc di
  24.               
  25.               dec cx
  26.               jnz psc2
  27.  
  28.               ret
  29.  
  30.